#!/bin/bash

# This script is used to create a special HSC user

if [ "$1" = "" -o "$2" = "" ]; then
   echo  "ERROR: This script requires two input arguments..."
   exit 2
fi


export PATH=/opt/IBMJava2-13/jre/bin:$PATH

export CLASSPATH=/usr/websm/codebase/pluginjars/hmcdebug.jar:/opt/hsc:/usr/websm/codebase/wsm.jar:$CLASSPATH

echo "Creating an User...."

java -Xms20m -Xmx128m com.ibm.hsc.common.util.CreateHSCUser $1 $2

